Dynomotion

Group: DynoMotion Message: 12423 From: hb.terry Date: 10/20/2015
Subject: I/O to BITS

I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//

Group: DynoMotion Message: 12425 From: TK Date: 10/20/2015
Subject: Re: I/O to BITS
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 

I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//


Group: DynoMotion Message: 12426 From: hb terry Date: 10/21/2015
Subject: Re: I/O to BITS
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//



Group: DynoMotion Message: 12427 From: TK Date: 10/21/2015
Subject: Re: I/O to BITS
Hi Terry,

Initially for testing use KMotion.exe | C Programs Screen to Open/Compile/Download/Run the EnableKonnect.c example.  Later add the code to your Initialization C Program so that it is automatically configured along with everything else for your system.  See:

http://www.dynomotion.com/wiki/index.php?title=KFLOP_C_Programs

HTH
Regards
TK

On 10/21/2015 6:43 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//




Group: DynoMotion Message: 12430 From: hb terry Date: 10/23/2015
Subject: Re: I/O to BITS
Ok, i found the example program enableconnect.c. I push the compile/download/run button.  When i toggle virtual bit 48, i get a light beside of output  -0- on the connect board. I have a meter hooked to the ground on the kflop board and the other lead on output +0. I still dont get any voltage. I verified 3.3volts coming into the konnect board via pin 3 on jp8. Also verified the ground on jp8 on pin 8 and 9.  Am i doing something wrong?



On Wednesday, October 21, 2015 11:30 AM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

Initially for testing use KMotion.exe | C Programs Screen to Open/Compile/Download/Run the EnableKonnect.c example.  Later add the code to your Initialization C Program so that it is automatically configured along with everything else for your system.  See:

http://www.dynomotion.com/wiki/index.php?title=KFLOP_C_Programs

HTH
Regards
TK

On 10/21/2015 6:43 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//






Group: DynoMotion Message: 12431 From: Moray Cuthill Date: 10/23/2015
Subject: Re: I/O to BITS
Hi,

the outputs are all opto-isolated, which means the 3.3V used by the Konnect is isolated from the output terminals. The easiest way to think of each output, is like a very small relay.

Depending on your solenoid current requirements, you may be able to control it directly from the Konnect output, which is rated to 30V at 250mA. If you do control it directly, remember you will need to also add a flyback diode to protect the Konnect opto-isolator from the surge of the solenoid being de-energised, the as you would if using a relay.
Details can be found at http://dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm if you scroll down to "Opto Isolated Outputs".

Tom, if you're reading this, the picture of the Opto outs has the caption, "Input Bank Commons", which I suspect is not the correct caption...

Moray

On Fri, Oct 23, 2015 at 7:55 PM, hb terry hb.terry@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 

Ok, i found the example program enableconnect.c. I push the compile/download/run button.  When i toggle virtual bit 48, i get a light beside of output  -0- on the connect board. I have a meter hooked to the ground on the kflop board and the other lead on output +0. I still dont get any voltage. I verified 3.3volts coming into the konnect board via pin 3 on jp8. Also verified the ground on jp8 on pin 8 and 9.  Am i doing something wrong?



On Wednesday, October 21, 2015 11:30 AM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

Initially for testing use KMotion.exe | C Programs Screen to Open/Compile/Download/Run the EnableKonnect.c example.  Later add the code to your Initialization C Program so that it is automatically configured along with everything else for your system.  See:

http://www.dynomotion.com/wiki/index.php?title=KFLOP_C_Programs

HTH
Regards
TK

On 10/21/2015 6:43 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//







Group: DynoMotion Message: 12432 From: TK Date: 10/24/2015
Subject: Re: I/O to BITS
Hi Moray,

Thanks for pointing that out.

Regards
TK

On 10/23/2015 12:43 PM, Moray Cuthill moray.cuthill@... [DynoMotion] wrote:
 
Hi,

the outputs are all opto-isolated, which means the 3.3V used by the Konnect is isolated from the output terminals. The easiest way to think of each output, is like a very small relay.

Depending on your solenoid current requirements, you may be able to control it directly from the Konnect output, which is rated to 30V at 250mA. If you do control it directly, remember you will need to also add a flyback diode to protect the Konnect opto-isolator from the surge of the solenoid being de-energised, the as you would if using a relay.
Details can be found at http://dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm if you scroll down to "Opto Isolated Outputs".

Tom, if you're reading this, the picture of the Opto outs has the caption, "Input Bank Commons", which I suspect is not the correct caption...

Moray

On Fri, Oct 23, 2015 at 7:55 PM, hb terry hb.terry@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 
Ok, i found the example program enableconnect.c. I push the compile/download/run button.  When i toggle virtual bit 48, i get a light beside of output  -0- on the connect board. I have a meter hooked to the ground on the kflop board and the other lead on output +0. I still dont get any voltage. I verified 3.3volts coming into the konnect board via pin 3 on jp8. Also verified the ground on jp8 on pin 8 and 9.  Am i doing something wrong?



On Wednesday, October 21, 2015 11:30 AM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

Initially for testing use KMotion.exe | C Programs Screen to Open/Compile/Download/Run the EnableKonnect.c example.  Later add the code to your Initialization C Program so that it is automatically configured along with everything else for your system.  See:

http://www.dynomotion.com/wiki/index.php?title=KFLOP_C_Programs

HTH
Regards
TK

On 10/21/2015 6:43 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//








Group: DynoMotion Message: 12441 From: hb terry Date: 10/26/2015
Subject: Re: I/O to BITS
Attachments :
Attached is a Quick and dirty diagram of my hook up. The meter is attached normally where i would put the relay. Im not getting what i should. Help Please.



On Friday, October 23, 2015 3:44 PM, "Moray Cuthill moray.cuthill@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi,

the outputs are all opto-isolated, which means the 3.3V used by the Konnect is isolated from the output terminals. The easiest way to think of each output, is like a very small relay.

Depending on your solenoid current requirements, you may be able to control it directly from the Konnect output, which is rated to 30V at 250mA. If you do control it directly, remember you will need to also add a flyback diode to protect the Konnect opto-isolator from the surge of the solenoid being de-energised, the as you would if using a relay.
Details can be found at http://dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm if you scroll down to "Opto Isolated Outputs".

Tom, if you're reading this, the picture of the Opto outs has the caption, "Input Bank Commons", which I suspect is not the correct caption...

Moray

On Fri, Oct 23, 2015 at 7:55 PM, hb terry hb.terry@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 
Ok, i found the example program enableconnect.c. I push the compile/download/run button.  When i toggle virtual bit 48, i get a light beside of output  -0- on the connect board. I have a meter hooked to the ground on the kflop board and the other lead on output +0. I still dont get any voltage. I verified 3.3volts coming into the konnect board via pin 3 on jp8. Also verified the ground on jp8 on pin 8 and 9.  Am i doing something wrong?



On Wednesday, October 21, 2015 11:30 AM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

Initially for testing use KMotion.exe | C Programs Screen to Open/Compile/Download/Run the EnableKonnect.c example.  Later add the code to your Initialization C Program so that it is automatically configured along with everything else for your system.  See:

http://www.dynomotion.com/wiki/index.php?title=KFLOP_C_Programs

HTH
Regards
TK

On 10/21/2015 6:43 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//









  @@attachment@@
Group: DynoMotion Message: 12442 From: TK Date: 10/26/2015
Subject: Re: I/O to BITS [1 Attachment]
Hi Terry,

Its hard to communicate when we don't know what your background and skills are.  Do you know basic electronics?  Would you know how to wire up a battery,  a switch, and a light bulb?  The Konnect Output is much like a switch.  Or as Moray tried to explain a relay contact.  If you put a light switch on the table and connected a voltmeter to the switch terminals would you expect to read any voltage with a voltmeter as you toggled the switch on and off?  You must use the Konnect Output in a circuit.

Regards
TK



On 10/26/2015 6:58 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
Attached is a Quick and dirty diagram of my hook up. The meter is attached normally where i would put the relay. Im not getting what i should. Help Please.



On Friday, October 23, 2015 3:44 PM, "Moray Cuthill moray.cuthill@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi,

the outputs are all opto-isolated, which means the 3.3V used by the Konnect is isolated from the output terminals. The easiest way to think of each output, is like a very small relay.

Depending on your solenoid current requirements, you may be able to control it directly from the Konnect output, which is rated to 30V at 250mA. If you do control it directly, remember you will need to also add a flyback diode to protect the Konnect opto-isolator from the surge of the solenoid being de-energised, the as you would if using a relay.
Details can be found at http://dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm if you scroll down to "Opto Isolated Outputs".

Tom, if you're reading this, the picture of the Opto outs has the caption, "Input Bank Commons", which I suspect is not the correct caption...

Moray

On Fri, Oct 23, 2015 at 7:55 PM, hb terry hb.terry@... [DynoMotion] <DynoMotion@yahoogroups.com> wrote:
 
Ok, i found the example program enableconnect.c. I push the compile/download/run button.  When i toggle virtual bit 48, i get a light beside of output  -0- on the connect board. I have a meter hooked to the ground on the kflop board and the other lead on output +0. I still dont get any voltage. I verified 3.3volts coming into the konnect board via pin 3 on jp8. Also verified the ground on jp8 on pin 8 and 9.  Am i doing something wrong?



On Wednesday, October 21, 2015 11:30 AM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

Initially for testing use KMotion.exe | C Programs Screen to Open/Compile/Download/Run the EnableKonnect.c example.  Later add the code to your Initialization C Program so that it is automatically configured along with everything else for your system.  See:

http://www.dynomotion.com/wiki/index.php?title=KFLOP_C_Programs

HTH
Regards
TK

On 10/21/2015 6:43 AM, hb terry hb.terry@... [DynoMotion] wrote:
 
I understand all of this except the c-programming part. This AddKonnect(0,&VirtualBits,VirtualBitsEx);  where is it located and where do i put it? Do i have to write the program and save it or is it in an example program already? Bare with me, i am new to this. I was told to figure it out. 



On Tuesday, October 20, 2015 8:47 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Hi Terry,

See the section: Typical IO Mapping for Standard Single Konnect
http://www.dynomotion.com/Help/SchematicsKonnect/ConnectorsKonnect.htm

in your case the code from the example EnableKonnect.c should work.

    InitAux();
    AddKonnect(0,&VirtualBits,VirtualBitsEx);


After that toggling Bit 48 on the Digital I/O screen should turn on and off Konnect Output #0

You would use Bit 48 in the KMotionCNC Tool Setup.  Normally M3 might turn it on and M5 turn it off.

HTH
Regards
TK



On 10/20/2015 1:17 PM, hb.terry@... [DynoMotion] wrote:
 
I am trying to control a solenoid to open and close an air chuck. I am using a Konnect board that is connected to the Kflop via Jp8 on the Konnect board to Jp6 on the kflop board. I am trying to utilize 3.3 v from the Konnect board to a relay that would in turn activate a 24v solenoid to open and close an air chuck. My problem is which bits do i match up in tool setup, which terminals on the Konnect board will go with those bits, and on the digital i/o screen in kmotion.exe which output and state will toggle these bits so i can test my hook ups?//










Group: DynoMotion Message: 12444 From: hb terry Date: 10/27/2015
Subject: Re: I/O to BITS
Ok, I finally figured it out. Once i figured out i had to apply 24 volts into terminal +0 it all clicked. I was under the false thought i could utilize the 3.3 volts supplied from kflop to the konnect board. I have basic electrical skills. This is really above my knowledge but i have to learn as i go. Like i said i was told to figure it out. Sheep thrown amongst the wolves if you will. Thanks for all the help im sure i will need more.
Group: DynoMotion Message: 12446 From: TK Date: 10/27/2015
Subject: Re: I/O to BITS
Great.  Thanks for your patience and persistence. 

If you are driving a Relay with a coil make sure to add a reverse diode across the coil.  Current Flow in a coil is analogous to the momentum of a freight train.  Attempting to stop the current flow instantly is like trying to stop a freight train with a brick wall.  The negative force generated is huge (big spark).  The diode is similar to adding a loop in the train tracks where the train can circulate until it coasts to a stop.

Regards
TK

On 10/27/2015 1:52 PM, hb terry hb.terry@... [DynoMotion] wrote:
 
Ok, I finally figured it out. Once i figured out i had to apply 24 volts into terminal +0 it all clicked. I was under the false thought i could utilize the 3.3 volts supplied from kflop to the konnect board. I have basic electrical skills. This is really above my knowledge but i have to learn as i go. Like i said i was told to figure it out. Sheep thrown amongst the wolves if you will. Thanks for all the help im sure i will need more.

Group: DynoMotion Message: 12452 From: hb terry Date: 10/28/2015
Subject: Re: I/O to BITS
I actually put the flyback diode on the terminals of the solenoid coil itself so the negative feed back your talking about is shunned to ground per say.



On Tuesday, October 27, 2015 7:58 PM, "TK tk@... [DynoMotion]" <DynoMotion@yahoogroups.com> wrote:


 
Great.  Thanks for your patience and persistence. 

If you are driving a Relay with a coil make sure to add a reverse diode across the coil.  Current Flow in a coil is analogous to the momentum of a freight train.  Attempting to stop the current flow instantly is like trying to stop a freight train with a brick wall.  The negative force generated is huge (big spark).  The diode is similar to adding a loop in the train tracks where the train can circulate until it coasts to a stop.

Regards
TK

On 10/27/2015 1:52 PM, hb terry hb.terry@... [DynoMotion] wrote:
 
Ok, I finally figured it out. Once i figured out i had to apply 24 volts into terminal +0 it all clicked. I was under the false thought i could utilize the 3.3 volts supplied from kflop to the konnect board. I have basic electrical skills. This is really above my knowledge but i have to learn as i go. Like i said i was told to figure it out. Sheep thrown amongst the wolves if you will. Thanks for all the help im sure i will need more.